home *** CD-ROM | disk | FTP | other *** search
/ Delphi Informant Complete 1995 - 2000 / Delphi Informant Complete 1995 to 2000.iso / Delphi Informant Magazine Complete Works SOURCE CODE 1998.rar / 1998 / Jul / DI9807AM / tapiu_1.dfm / tapiu_1.txt
Text File  |  1997-12-19  |  2KB  |  89 lines

  1. object Form1: TForm1
  2.   Left = 256
  3.   Top = 238
  4.   Width = 533
  5.   Height = 306
  6.   Caption = 'TAPI Demonstration Project'
  7.   Font.Charset = DEFAULT_CHARSET
  8.   Font.Color = clWindowText
  9.   Font.Height = -11
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   OnCloseQuery = FormCloseQuery
  13.   OnCreate = FormCreate
  14.   PixelsPerInch = 96
  15.   TextHeight = 13
  16.   object Memo: TMemo
  17.     Left = 0
  18.     Top = 61
  19.     Width = 525
  20.     Height = 218
  21.     Align = alClient
  22.     ScrollBars = ssVertical
  23.     TabOrder = 0
  24.     WantTabs = True
  25.   end
  26.   object Panel1: TPanel
  27.     Left = 0
  28.     Top = 0
  29.     Width = 525
  30.     Height = 61
  31.     Align = alTop
  32.     BevelOuter = bvNone
  33.     TabOrder = 1
  34.     object Label1: TLabel
  35.       Left = 8
  36.       Top = 31
  37.       Width = 84
  38.       Height = 13
  39.       Caption = 'Enter the number:'
  40.     end
  41.     object ePhoneNum: TMaskEdit
  42.       Left = 103
  43.       Top = 27
  44.       Width = 93
  45.       Height = 21
  46.       EditMask = '!9 \(999\) 000-0000;1;_'
  47.       MaxLength = 16
  48.       TabOrder = 0
  49.       Text = '  (111) 222-3333'
  50.     end
  51.     object btnDial: TButton
  52.       Left = 207
  53.       Top = 25
  54.       Width = 58
  55.       Height = 25
  56.       Caption = 'Dial'
  57.       TabOrder = 1
  58.       OnClick = btnDialClick
  59.     end
  60.     object btnHangup: TButton
  61.       Left = 278
  62.       Top = 25
  63.       Width = 58
  64.       Height = 25
  65.       Caption = 'Hangup'
  66.       TabOrder = 2
  67.       OnClick = btnHangupClick
  68.     end
  69.     object rbDefault: TRadioButton
  70.       Left = 16
  71.       Top = 6
  72.       Width = 157
  73.       Height = 17
  74.       Caption = 'Use Default Call Manager'
  75.       TabOrder = 3
  76.     end
  77.     object rbCallManager: TRadioButton
  78.       Left = 180
  79.       Top = 6
  80.       Width = 165
  81.       Height = 17
  82.       Caption = 'Create a Call Manager'
  83.       Checked = True
  84.       TabOrder = 4
  85.       TabStop = True
  86.     end
  87.   end
  88. end
  89.